home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 201-225 / disk_222 / plplot / examples / example10.c < prev    next >
C/C++ Source or Header  |  1992-05-06  |  428b  |  20 lines

  1. /* Demonstration program for PLPLOT illustrating absolute positioning */
  2. /* of graphs on a page */
  3.  
  4. main()
  5. {
  6.       plstar(1,1);
  7.  
  8.       pladv(0);
  9.       plvpor(0.0,1.0,0.0,1.0);
  10.       plwind(0.0,1.0,0.0,1.0);
  11.       plbox("bc",0.0,0,"bc",0.0,0);
  12.  
  13.       plsvpa(50.0,150.0,100.0,150.0);
  14.       plwind(0.0,1.0,0.0,1.0);
  15.       plbox("bc",0.0,0,"bc",0.0,0);
  16.       plptex(0.5,0.5,1.0,0.0,0.5,"BOX at (50,150,100,150)");
  17.  
  18.       plend();
  19. }
  20.